home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / systra_1 / readme.txt < prev    next >
Encoding:
Text File  |  1999-03-02  |  2.0 KB  |  72 lines

  1.         ActiveXIt SysTrayIt 1.0 - FREEWARE (february 1999.)
  2.  
  3. SysTrayIt is a simple control which provides basic manipulation with 
  4. System Tray (task tray).
  5.  
  6. SysTrayIt is FreeWare, so ActiveXIt takes no responsibility for its improper
  7. use. Use it at your own risk. We do not take the responsibility for possible 
  8. problems generated by the control. However, we will fix any bugs you may find 
  9. in it.
  10.  
  11. Installing the control:
  12. After unzipping SysTrayIt.zip start Register.bat.
  13.  
  14. Requirements:
  15. Windows 95/98/NT and VB 5.0 ot higher. To try out Demo, VB 6.0.
  16.  
  17. Archive:
  18. Control comes in SysTrayIt.zip archive which contains following files.
  19.  
  20.     Readme.txt    - this file
  21.     SysTray.ocx    - the control itself (and SysTrayIt.lib)
  22.     RegSvr32.exe    - program for registering OLE servers
  23.     Register.bat    - batch file for registering SysTrayIt in registry
  24.     Demo        - VB project, form and form binary file (icon)
  25.  
  26. Purpose:    
  27. SysTrayIt shows Icon in the task tray, as well as tooltip text when mouse is over it.
  28.  
  29.  
  30. It has following properties:
  31.  
  32.     TipText        - returns/sets the tip text to be displayed in systray
  33.     Icon        - returns/sets the icon to be displayed in systray
  34.     Visible        - shows/hides icon from systray
  35.  
  36.  
  37. and events:
  38.  
  39.     MouseDown    - Mouse down on icon in systray
  40.     MouseUp        - Mouse lifted
  41.     MouseClick    - Clicked on icon in systray
  42.     DblClick    - Doble-clicked on icon
  43.  
  44. Usage:
  45. Paste this code on a form with command button (Command1) added.
  46.  
  47.     Sub Command1_Click()
  48.         Set SysTrayIt.Icon = Me.Icon
  49.         SystTrayIt.TipText = "Here I am!"
  50.         SysTrayIT.Visible = True
  51.     End sub
  52.  
  53. This shows forms icon in systray. See demo project Demo for details.
  54.  
  55.  
  56. Note of the Author:
  57. ActiveXIt SysTrayIt is FreeWare, so do not sell It.
  58. If you have anything to say (like critics, suggestions etc.) write e-mail to:
  59.  
  60. Miodrag Rakic 
  61. miodrag.rakic@kcs.ac.yu
  62.  
  63. Or regular mail to:
  64.  
  65. Miodrag Rakic,
  66. Porucnika Spasica i Masere 118/57
  67. 11000 Beograd, YUGOSLAVIA
  68.  
  69.  
  70. I'll be happy to reply.
  71.   
  72. Have fun using it.